home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
COMPILER
/
VP10B003
/
VPC
/
SOURCE
/
TV
/
TV700701.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-06-21
|
1KB
|
36 lines
@ECHO OFF
REM *******************************************************
REM * Updates Borland Pascal 7.0 Turbo Vision 2.0 sources *
REM *******************************************************
IF "%1" == "/?" GOTO HELP
IF "%1" == "-?" GOTO HELP
IF "%1" == "" GOTO HELP
IF EXIST "TV700701.PAT" GOTO RUN
ECHO **Error** Change to the \VP\SOURCE\TV directory and run TV4VP again.
GOTO EXIT
:RUN
\VP\BIN\VPPATCH TV700701.PAT %1 %2
GOTO EXIT
:HELP
ECHO Turbo Vision patch: BP 7.00 to BP 7.01
ECHO This patch reflects the changes made in the Borland Pascal 7.01.
ECHO 6 source files are affected.
ECHO Syntax:
ECHO TV700701 SourceDirectory DestinationDirectory
ECHO where
ECHO SourceDirectory is a directory with Turbo Vision source files
ECHO DestinationDirectory is a directory to hold 6 updated source files
ECHO NOTES:
ECHO 1) All Turbo Vision sources should be located in one directory.
ECHO Copy OBJECTS.PAS and VALIDATE.PAS from ...\COMMON to ...\TV
ECHO directory.
ECHO 2) To apply TV4VP patch to obtain 32-bit Turbo Vision for Virtual
ECHO Pascal you should overwrite 6 old Turbo Vision source files with
ECHO new ones, produced by this patch.
:EXIT